Skip to main content
Version: 1.0.2

Get List of MCC Group

Get a list of Merchant Category Code groups sorted by name.

Method: POST

{{URL}}/cardv2

Headers

NameValue
Content-Typeapplication/json

Example

Payload Parameters
ParametersDescription

reference

Optional

String

Unique reference ID of the request

Sample Value: "163290659177"

transactionType

Mandatory

String

Type of operation / transaction

Constant Value : "GET_MCCGROUP_LIST"

customerId

Mandatory

String

Unique ID of the customer

Sample Value : "100000000033002"

product

Mandatory

String

Name of the product associated with the card

Sample Value: "DEFAULT"

channel

Mandatory

Enum

Processing channel through which the card transaction happens

Valid Values:

PULSE

VISA_DPS

Sample Value :"VISA_DPS"

program

Mandatory

String

Name of the program to which the card product is mapped

Sample Value : "DEFAULT"

pagination

Optional

Object

offset

Optional

Number

Number of items to skip before starting to return the data

Sample Value : 2

max

Optional

Number

Maximum number of records to retrieve in this request

Sample Value : 1


curl --location --globoff '{{URL}}/cardv2' \
--header 'Content-Type: application/json' \
--data '{"method":"ledger.CARD.request","id":"1","params":{"payload":{"reference":"163290659177","transactionType":"GET_MCCGROUP_LIST","customerId":"100000000033002","product":"DEFAULT","channel":"VISA_DPS","program":"DEFAULT","pagination":{"offset":2,"max":1}},"api":{"credential":"{{cred}}","signature":"{{signature}}","apiKey":"{{Api-key}}"}}}'

Body


{
"method": "ledger.CARD.request",
"id": "1",
"params": {
"payload": {
"reference": "163290659177",
"transactionType": "GET_MCCGROUP_LIST",
"customerId": "100000000033002",
"product": "DEFAULT",
"channel": "VISA_DPS",
"program": "DEFAULT",
"pagination": {
"offset": 2,
"max": 1
}
},
"api": {
"credential": "{{cred}}",
"signature": "{{signature}}",
"apiKey": "{{Api-key}}"
}
}
}

Response: 200

Response Parameters
ParametersDescription

Id

String

Response Id echoed from the request Id

Sample Value : "1"

result

Object

totalRecords

Number

Total number of MCC group(s) present in the list

Constant value: 1

api

Object

type

String

Acknowledgement for type of operation requested for

Constant value: " GET_MCCGROUP_LIST_ACK"

reference

String

Auto generated reference ID of this acknowledgment

Sample value: " REF163290659177"

dateCreated

Number

Unix timestamp of the response was created

Sample value: 1730812863

originalReference

String

Original reference ID taken from the request

Sample value: " 163290659177"


{
"id": "1",
"result": {
"totalRecords": 1,
"api": {
"type": "GET_MCCGROUP_LIST_ACK",
"reference": "REF163290659177",
"dateCreated": 1730812863,
"originalReference": "163290659177"
}
}
}